home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 35 / 35.xpi / chrome / ieview.jar / content / ieviewOverlay.xul < prev    next >
Extensible Markup Language  |  2009-09-17  |  4KB  |  94 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://ieview/skin/ieview-toolbar-button.css" type="text/css"?>
  3.  
  4. <!DOCTYPE overlay SYSTEM "chrome://ieview/locale/ieview.dtd" >
  5. <!-- ***** BEGIN LICENSE BLOCK *****
  6.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.    -
  8.    - The contents of this file are subject to the Mozilla Public License Version
  9.    - 1.1 (the "License"); you may not use this file except in compliance with
  10.    - the License. You may obtain a copy of the License at
  11.    - http://www.mozilla.org/MPL/
  12.    -
  13.    - Software distributed under the License is distributed on an "AS IS" basis,
  14.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.    - for the specific language governing rights and limitations under the
  16.    - License.
  17.    -
  18.    - The Initial Developer of the Original Code is Fabricio Campos Zuardi
  19.    - Portions created by the Initial Developer are Copyright (C) 2001-2002
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -  Ted Mielczarek <luser_mozilla@perilith.com>
  24.    -  Paul Roub <paul@roub.net>
  25.    -
  26.    - Alternatively, the contents of this file may be used under the terms of
  27.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  28.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.    - in which case the provisions of the GPL or the LGPL are applicable instead
  30.    - of those above. If you wish to allow use of your version of this file only
  31.    - under the terms of either the GPL or the LGPL, and not to allow others to
  32.    - use your version of this file under the terms of the MPL, indicate your
  33.    - decision by deleting the provisions above and replace them with the notice
  34.    - and other provisions required by the LGPL or the GPL. If you do not delete
  35.    - the provisions above, a recipient may use your version of this file under
  36.    - the terms of any one of the MPL, the GPL or the LGPL.
  37.    -
  38.    - ***** END LICENSE BLOCK ***** -->
  39.  
  40. <overlay id="ieviewOverlay"
  41.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  42.  
  43.     <stringbundleset id="stringbundleset">
  44.         <stringbundle id="bundle_ieview" src="chrome://ieview/locale/ieview.properties"/>
  45.     </stringbundleset>
  46.  
  47.     <script type="application/x-javascript" src="chrome://ieview/content/ieviewOverlay.js"/>
  48.  
  49.     <menupopup id="menu_ToolsPopup">
  50.         <menuitem id="ieview-do-forcepage-menu" label="&ieview.popup-ieview-force-page;" oncommand="IeView.forcePage()" insertbefore="ieviewSepFF,menu_preferences" />
  51.         <menuseparator  id="ieviewSepFF" insertbefore="menu_preferences" />
  52.     </menupopup>
  53.  
  54.     <menupopup id="taskPopup">
  55.         <menuitem id="ieview-do-forcepage-menu-moz" label="&ieview.popup-ieview-force-page;" oncommand="IeView.forcePage()" />
  56.         <menuitem id="ieview-open-options" label="&ieview.edit-ieview-options;" oncommand="ieviewLaunchOptions()" />
  57.         <menuseparator  id="ieviewSepMoz" />
  58.     </menupopup>
  59.  
  60.     <popupset id="mainPopupSet">
  61.         <menupopup id="ieviewTabContext">
  62.             <menuitem id="context-ieViewTab" label="&ieview.places-view-in-ie;" oncommand="IeView.loadTabInIE();" />
  63.             <menuseparator id="context-ieViewTabsep" /> 
  64.         </menupopup>
  65.     </popupset>
  66.  
  67.     <toolbarpalette id="BrowserToolbarPalette">
  68.         <toolbarbutton id="ieview-button" class="toolbarbutton-1"
  69.             label="IE View" tooltiptext="&ieview.popup-ieview-do-view;"
  70.             oncommand="IeView.ieView(event);"/>
  71.     </toolbarpalette>
  72.  
  73.     <popup id="contentAreaContextMenu">
  74.         <menuitem 
  75.             id="ieview-do-view" 
  76.             label="&ieview.popup-ieview-do-view;" 
  77.             oncommand="IeView.ieView()"/>
  78.         <menuitem 
  79.             id="ieview-do-viewlink" 
  80.             label="&ieview.popup-ieview-do-viewlink;" 
  81.             oncommand="IeView.ieViewLink()"/>
  82.     </popup>
  83.  
  84.     <popup id="placesContext">
  85.         <menuitem
  86.             id="ieview-do-places-view"
  87.             label="&ieview.places-view-in-ie;"
  88.             oncommand="IeView.placesView()"
  89.             insertafter="placesContext_open:newtab"/>
  90.           <menuseperator id="ieviewPlacesSep" insertafter="ieview-do-places-view" />
  91.     </popup>
  92.  
  93. </overlay>
  94.